/* Section */
.director-section {
  padding: 60px 20px;
  background: #ffffff;
}

/* Layout */
.director-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Image (BIG SIZE 🔥) */
.director-img {
  flex: 1.2;
  text-align: center;
  animation: fadeInLeft 1s ease;
}

.director-img img {
  width: 480px;   /* BIG IMAGE */
  max-width: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.director-img img:hover {
  transform: scale(1.05);
}

/* Text */
.director-text {
  flex: 1.8;
  animation: fadeInRight 1s ease;
}

.director-text h3 {
  font-size: 28px;
  margin-bottom: 5px;
}

.designation {
  color: #007bff;
  font-weight: 500;
}

.awards {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.highlight {
  font-weight: bold;
  font-size: 18px;
  color: #007bff;
}

.bold {
  font-weight: bold;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .director-content {
    flex-direction: column;
    text-align: center;
  }

  .director-img img {
    width: 350px;
  }
}

@media (max-width: 576px) {
  .director-img img {
    width: 280px;
  }

  .director-text h3 {
    font-size: 22px;
  }
}

.director-img img {
  width: 100%;
  max-width: 500px;
  height: 550px;              /* 👈 Increase height here */
  object-fit: cover;          /* 👈 Keeps image proportional */
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}